home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / COMPILER / VP10B003 / VPC.ZIP / SOURCE / RTL / USE32.PAS < prev    next >
Pascal/Delphi Source File  |  1995-06-22  |  380b  |  24 lines

  1. unit Use32;
  2.  
  3. interface
  4.  
  5. type
  6.   SmallInt   = System.Integer;
  7.   SmallWord  = System.Word;
  8. {$IFDEF USE32}
  9.   Integer    = System.Longint;
  10.   Word       = System.Longint;
  11. const
  12.   MaxInt     = MaxLongint;
  13. {$ENDIF}
  14. type
  15.   PByte      = ^Byte;
  16.   PWord      = ^Word;
  17.   PLongint   = ^Longint;
  18.   PSmallInt  = ^SmallInt;
  19.   PSmallWord = ^SmallWord;
  20.  
  21. implementation
  22.  
  23. end.
  24.